翻訳と辞書
Words near each other
・ Bisweswar Bhattacharjee
・ Biswo Ghatna
・ Bisymmetric matrix
・ Biszcza
・ Biszewo
・ Bisztynek
・ Bisztynek-Kolonia
・ Bit
・ BIT (alternative information centre)
・ Bit (disambiguation)
・ Bit (horse)
・ Bit (key)
・ Bit (money)
・ Bit Adini
・ Bit Agusi
Bit array
・ Bit Bahiani
・ Bit banging
・ Bit blit
・ Bit Boy!!
・ Bit Boy!! Arcade
・ Bit bucket
・ Bit by a Dead Bee
・ Bit by Bats
・ Bit by Bit
・ Bit cell
・ Bit converter
・ Bit Corporation
・ Bit depth
・ Bit Elwadi


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Bit array : ウィキペディア英語版
Bit array

A bit array (also known as bitmap, bitset, bit string, or bit vector) is an array data structure that compactly stores bits. It can be used to implement a simple set data structure. A bit array is effective at exploiting bit-level parallelism in hardware to perform operations quickly. A typical bit array stores ''kw'' bits, where ''w'' is the number of bits in the unit of storage, such as a byte or word, and ''k'' is some nonnegative integer. If ''w'' does not divide the number of bits to be stored, some space is wasted due to internal fragmentation.
== Definition ==
A bit array is a mapping from some domain (almost always a range of integers) to values in the set . The values can be interpreted as dark/light, absent/present, locked/unlocked, valid/invalid, et cetera. The point is that there are only two possible values, so they can be stored in one bit. As with other arrays, the access to a single bit can be managed by applying an index to the array. Assuming its size (or length) to be ''n'' bits, the array can be used to specify a subset of the domain (e.g. ), where a 1-bit indicates the presence and a 0-bit the absence of a number in the set. This set data structure uses about ''n''/''w'' words of space, where ''w'' is the number of bits in each machine word. Whether the least significant bit (of the word) or the most significant bit indicates the smallest-index number is largely irrelevant, but the former tends to be preferred (on little-endian machines).

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Bit array」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.